GrapeCity SPREAD for Windows Forms 11.0J
AddRange(String[]) メソッド


このコレクションに要素を追加するコレクション。
指定したコレクションに含まれるテキストをコレクションの最後に追加します。
構文
'Declaration
 
Public Overloads Sub AddRange( _
   ByVal texts() As String _
) 
'使用法
 
Dim instance As ListItemCollectionInfo
Dim texts() As String
 
instance.AddRange(texts)
public void AddRange( 
   string[] texts
)

パラメータ

texts
このコレクションに要素を追加するコレクション。
次のサンプルコードは、リストに項目を追加します。
GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType gccombo = new GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType();
gccombo.DropDownStyle = ComboBoxStyle.DropDownList;           
gccombo.Items.AddRange(new string[] { "Feta", "Havarti", "Gruyere" });
fpSpread1.Sheets[0].Cells[1, 1].CellType = gccombo;
Dim gccombo As New GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType()
gccombo.DropDownStyle = ComboBoxStyle.DropDownList
gccombo.Items.AddRange(New String() {"Feta", "Havarti", "Gruyere"})
FpSpread1.Sheets(0).Cells(1, 1).CellType = gccombo
参照

ListItemCollectionInfo クラス
ListItemCollectionInfo メンバ
オーバーロード一覧

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.